PropertyChangingEventArgs
The PropertyChangingEventArgs class extends BaseEventArgs and represents event arguments for property value changes before they are applied.
Properties
| Name | Description |
|---|
| NewValue | The new value that is about to be set. |
| Name | The name of the property that is about to change. |
| Cancel | Indicates whether the property change should be canceled. |
| OldValue | The current value of the property before the change. |
| ResponseParameters | The response parameters associated with the event. |
Constructors
Generic Types
| Name | Description |
|---|
| TValue | Generic type of value properties. |